Linking Style Sheets

To link a style sheet to HTML pages, click the toolbutton shown on the left to open the Style Sheet Link Wizard [CTRL+L].

Select the files or files in folders that you want to link the style sheet to. Select the Insert style <link> option, and choose other options (if desired) to back up the HTML files or remove existing style blocks or links to style sheets.

Note: this is generally the best way to attach styles to pages, because it is most efficient in terms of site performance.

Example

<html>
<head>
<title>Linking Style Sheets</title>
<link rel="STYLESHEET" type="text/css" href="styles.css">
</head>